home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
lang_c
/
cpptut22
/
box.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1992-01-19
|
499b
|
32 lines
// Chapter 5 - Program 8
#include "box.h"
box::box(void) //Constructor implementation
{
length = 8;
width = 8;
}
// This method will set a box size to the two input parameters
void box::set(int new_length, int new_width)
{
length = new_length;
width = new_width;
}
box::~box(void) //Destructor
{
length = 0;
width = 0;
}
// Result of execution
//
// This implementation file cannot be executed